Kaspersky Security Center 14.2 사용을 위한 MySQL x64 서버 구성

Kaspersky Security Center에 MySQL DBMS를 사용한다면, InnoDB 및 MEMORY 스토리지와 UTF-8 및 UCS-2 인코딩 지원을 활성화하십시오.

my.ini 파일에 대한 권장 설정

my.ini 파일 구성하기:

  1. 텍스트 편집기에서 my.ini 파일을 엽니다.
  2. My.ini 파일의 [mysqld] 섹션에 다음 줄을 추가합니다.

    sort_buffer_size=10M

    join_buffer_size=20M

    tmp_table_size=600M

    max_heap_table_size=600M

    key_buffer_size=200M

    innodb_buffer_pool_size=the real 값은 예상 KAV 데이터베이스 크기의 80% 이상이어야 합니다

    innodb_thread_concurrency=20

    innodb_flush_log_at_trx_commit=0(서버는 대개 작은 트랜잭션을 사용)

    innodb_lock_wait_timeout=300

    max_allowed_packet=32M

    max_connections=151

    max_prepared_stmt_count=12800

    table_open_cache=60000

    table_open_cache_instances=4

    table_definition_cache=60000

    innodb_buffer_pool_size 값에 지정된 메모리는 서버 시작 시 할당됩니다. 데이터베이스 크기가 지정된 버퍼 크기보다 작다면, 필요한 메모리만 할당됩니다. 할당된 메모리의 실제 크기는 지정된 버퍼 크기보다 약 10% 큽니다. 자세한 내용은 MySQL 설명서를 참조하십시오.

    파라미터 값으로 innodb_flush_log_at_trx_commit = 0을 사용하기를 권장합니다. "1" 또는 "2" 값은 MySQL의 작동 속도에 부정적인 영향을 미치기 때문입니다.

맨 위로